home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / chap06 / howto05 / delphi10 / ccfmgr34.dpr next >
Encoding:
Text File  |  1995-11-29  |  814 b   |  26 lines

  1. program Ccfmgr34;
  2.  
  3. uses
  4.   Forms,
  5.   Ufmgr34 in 'UFMGR34.PAS' {CCFileMgrForm},
  6.   Drwsutl4 in 'DRWSUTL4.PAS',
  7.   Drwsutl6 in 'DRWSUTL6.PAS',
  8.   Drwsutl1 in 'DRWSUTL1.PAS',
  9.   Pprevun in 'PPREVUN.PAS' {PrintPreviewForm},
  10.   Ccprnmgr in 'CCPRNMGR.PAS' {CCPrintForm},
  11.   Dddfunit in 'DDDFUNIT.PAS' {DestDDForm},
  12.   Cfmpfun in 'CFMPFUN.PAS' {CCFMPropsForm};
  13.  
  14. {$R *.RES}
  15.  
  16. begin
  17.   Application.Title := 'CC File Center';
  18.   Application.HelpFile := 'D:\WAITE\DELRWSLN\CODE\CHAP05\HOWTO02\PRNTDLG.HLP';
  19.   Application.CreateForm(TCCFileMgrForm, CCFileMgrForm);
  20.   Application.CreateForm(TPrintPreviewForm, PrintPreviewForm);
  21.   Application.CreateForm(TCCPrintForm, CCPrintForm);
  22.   Application.CreateForm(TDestDDForm, DestDDForm);
  23.   Application.CreateForm(TCCFMPropsForm, CCFMPropsForm);
  24.   Application.Run;
  25. end.
  26.